home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / mus / misc / maplay1_2.lha / maplay / all.h next >
C/C++ Source or Header  |  1994-06-23  |  1KB  |  45 lines

  1. /*
  2.  *  @(#) all.h 1.6, last edit: 6/17/94 15:40:44
  3.  *  @(#) Copyright (C) 1993, 1994 Tobias Bading (bading@cs.tu-berlin.de)
  4.  *  @(#) Berlin University of Technology
  5.  *
  6.  *  This program is free software; you can redistribute it and/or modify
  7.  *  it under the terms of the GNU General Public License as published by
  8.  *  the Free Software Foundation; either version 2 of the License, or
  9.  *  (at your option) any later version.
  10.  *
  11.  *  This program is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *  GNU General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with this program; if not, write to the Free Software
  18.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20.  
  21. #ifndef ALL_H
  22. #define ALL_H
  23.  
  24. typedef float        real;        // float should be enough
  25. typedef short        bool;
  26. typedef unsigned    uint32;        // 32 Bit unsigned integer
  27.     // some compilers may need "typedef unsigned long uint32" instead
  28. typedef int        int32;        // 32 Bit signed integer
  29.     // some compilers may need "typedef long int32" instead
  30. typedef unsigned short    uint16;        // 16 Bit unsigned integer
  31. typedef short        int16;        // 16 Bit signed integer
  32.  
  33. typedef unsigned char    ulawsample;    // u-law byte
  34.  
  35. #ifndef True
  36. #define True    1
  37. #define False    0
  38. #endif
  39.  
  40. #ifdef SunOS4_1_1
  41. #define ULAW 1
  42. #endif
  43.  
  44. #endif
  45.